home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ADA Programming Guide
/
ADA Programming Guide.iso
/
ada_gnu
/
include
/
fcntl_h.old
< prev
next >
Wrap
Text File
|
1996-01-30
|
1KB
|
51 lines
/*
** Copyright (C) 1991 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
**
** This file is distributed under the terms listed in the document
** "copying.dj", available from DJ Delorie at the address above.
** A copy of "copying.dj" should accompany this file; if not, a copy
** should be available from where this file was obtained. This file
** may not be distributed without a verbatim copy of "copying.dj".
**
** This file is distributed WITHOUT ANY WARRANTY; without even the implied
** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef fcntl_h
#define fcntl_h
#ifdef __cplusplus
extern "C" {
#endif
#define KERNEL
#define O_RDONLY 0x0001
#define O_WRONLY 0x0002
#define O_RDWR 0x0004
#define O_CREAT 0x0100
#define O_TRUNC 0x0200
#define O_EXCL 0x0400
#define O_APPEND 0x0800
#define O_TEXT 0x4000
#define O_BINARY 0x8000
#define O_NOINHERIT 0x0080
#define O_DENYALL 0x0010
#define O_DENYWRITE 0x0020
#define O_DENYREAD 0x0030
#define O_DENYNONE 0x0040
extern int _fmode;
#undef KERNEL
#ifdef __cplusplus
}
#endif
#include <std.h>
#endif